home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / puts.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  242 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. int puts(const char *s)
  4. /*  s.o. was muss hier zurueckgegeben werden?   */
  5. {
  6.     if(fputs(s,stdout)==EOF) return(EOF);
  7.     if(putc('\n',stdout)==EOF) return(EOF);
  8.     if(fflush(stdout)==EOF) return(EOF); else return(1);
  9. }
  10.